home *** CD-ROM | disk | FTP | other *** search
/ Inside the White House / Inside the White House.iso / bios.dir / 00068.ls < prev    next >
Encoding:
Text File  |  1995-08-02  |  520 b   |  13 lines

  1. on mouseUp
  2.   global gTextSprite, gPicSprite, gNameSprite, gPicStart, gTextStart, gNameStart, gpresident, gSoundStart
  3.   set gpresident to the mouseLine
  4.   if gpresident < 42 then
  5.     hilite line gpresident of field "Presidents"
  6.     puppetSound(gSoundStart + gpresident - 1)
  7.     set the castNum of sprite gPicSprite to gPicStart + gpresident - 1
  8.     set the castNum of sprite gTextSprite to gTextStart + gpresident - 1
  9.     set the castNum of sprite gNameSprite to gNameStart + gpresident - 1
  10.     updateStage()
  11.   end if
  12. end
  13.